home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscArrowButtonPalette / Makefile.postamble < prev    next >
Makefile  |  1995-01-30  |  720b  |  24 lines

  1. #    MiscArrowButton Makefile.postamble
  2. #    basically lifted from MiscClockView which was
  3. #    basically lifted from a mini-example (TTools, I would guess)
  4. #    this is 3.1 specific, and will enable the building of FAT palletes!
  5.  
  6. #LIBTOOL = /bin/ar r         # for 3.0
  7. LIBTOOL = /bin/libtool -o    # for 3.1, 3.2, fat palettes
  8.  
  9. # Optimization flag passed to compiler:
  10. OPTIMIZATION_CFLAG = -O2 -pipe
  11.  
  12. COMMON_CFLAGS = $(PROJECT_SPECIFIC_CFLAGS) -Wall  
  13.  
  14. # Flags passed to compiler in normal 'app' compiles:
  15. NORMAL_CFLAGS = $(COMMON_CFLAGS) $(OPTIMIZATION_CFLAG)
  16.  
  17. # Flags passed to compiler in normal 'app' compiles:
  18. # old (3.2) way
  19. #NORMAL_CFLAGS = $(OPTIMIZATION_CFLAG) -Wall
  20.  
  21. libMiscArrowButton.a: $(LIBOFILES)
  22.     $(LIBTOOL) $@ $(LIBOFILES)
  23.  
  24.